home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / helix_overflow.nasl < prev    next >
Text File  |  2005-03-31  |  2KB  |  69 lines

  1. #
  2. # This script was written by Keith Young
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11642);
  10.  script_bugtraq_id(8476);
  11.  script_cve_id("CAN-2003-0725");
  12.  script_version ("$Revision: 1.4 $");
  13.  
  14.  name["english"] = "Helix RealServer Buffer Overrun";
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. RealServer 8.0 and earlier and Helix Server 9.0 is 
  19. vulnerable to a buffer overflow.
  20.  
  21. More information and patches can be downloaded from
  22. http://service.real.com/help/faq/security/bufferoverrun030303.html
  23.  
  24. Solution: Install patches from vendor
  25. Risk factor : High";
  26.  
  27.  script_description(english:desc["english"]);
  28.  
  29.  summary["english"] = "RealServer and Helix Server Overflow";
  30.  script_summary(english:summary["english"]);
  31.  
  32.  script_category(ACT_GATHER_INFO);
  33.  
  34.  script_copyright(english:"This script is Copyright (C) 2003 Montgomery County Maryland Government Security Team");
  35.  family["english"] = "Gain a shell remotely";
  36.  script_family(english:family["english"]);
  37.  script_dependencie("find_service.nes");
  38.  script_require_ports("Services/rtsp", 554);
  39.  exit(0);
  40. }
  41.  
  42. #
  43. # Open the connection on port 554 and send the OPTIONS string
  44. #
  45.  
  46.  port = get_kb_item("Services/rtsp");
  47.  if(!port)port = 554;
  48.  if (get_port_state(port))
  49.  {
  50.   soc = open_sock_tcp(port);
  51.   if (soc)
  52.   {
  53.    data = string("OPTIONS * RTSP/1.0\r\n\r\n");
  54.    send(socket:soc, data:data);
  55.    header = recv(socket:soc, length:1024);
  56.    if(("RTSP/1" >< header) && ("Server:" >< header)) {
  57.      server = egrep(pattern:"Server:",string:header);
  58.  
  59. # Currently, all versions up to and including 9.0.1 are affected
  60.  
  61.      if( (egrep(pattern:"Version [0-8]\.[0-9]", string:server)) ||
  62.          (egrep(pattern:"Version 9\.0\.[0-1]", string:server)) ) {
  63.       security_hole(port);
  64.      }
  65.    }
  66.   close(soc);
  67.   }
  68.  }
  69.